Micron Document
πŸŽ–οΈGitΠ―Ρ€Π°πŸŽ–οΈ

Node / meshtastic / Meshtastic-Android / files / .github / agents / speckit.optimize.tokens.agent.md

Displaying Rendered β€’ View raw β€’ Download

.github/agents/speckit.optimize.tokens.agent.md gh-readonly-queue/main/pr-6178-ec5f1f249e8d44dd1ec1ede7e4523c75df7a94fe (b5ce69ea) Text, 7.79 KB

description: Track and report token usage across extensions and governance files.
handoffs:
β€’ label: Optimize governance
agent: speckit.optimize.run
prompt: Run a full governance audit to reduce token overhead
β€’ label: Amend constitution
agent: speckit.constitution
prompt: Apply approved token-reduction changes to the constitution


<!-- Extension: optimize -->
<!-- Config: .specify/extensions/optimize/ -->
User Input

T282828
$ARGUMENTS

You MUST consider the user input before proceeding (if not empty).
Arguments: T383838--diff to compare against the previous report, T383838--extensions-only to skip governance files.

Goal

Measure the token footprint of every governance document and extension command that AI agents load during sessions. Produce a token usage report with per-file costs, per-extension rankings, session load estimates, and historical trends. Suggest optimizations but apply nothing without user consent.

This command answers: "How much of my AI context window is consumed by governance and tooling overhead before any actual work begins?"

Operating Constraints

β€’ Suggest-only: NEVER modify any file without explicit user consent. This command is read-only by default.
β€’ Spec-kit standard paths: Start from T383838.specify/ as the source of truth. Discover tool-specific files (T383838CLAUDE.md, T383838AGENTS.md, T383838.github/copilot-instructions.md) by checking if they exist.
β€’ Reproducible estimates: Token estimation uses chars Γ· T383838chars_per_token (default: 4.0, configurable). Note this is approximate β€” actual tokenizer counts vary by model. Lower ratios (3.0–3.5) give more conservative estimates for code-heavy files.

Execution Steps

1. Discover Governance Files

Scan for all files that AI agents may load on session start or command invocation:

Always-loaded files (loaded on every AI session):
β€’ T383838CLAUDE.md (if present β€” Claude Code sessions)
β€’ T383838AGENTS.md (if present β€” generic agent sessions)
β€’ T383838.github/copilot-instructions.md (if present β€” Copilot sessions)

Constitution chain:
β€’ T383838.specify/memory/constitution.md β€” read to check if it is a redirect or contains content
β€’ If redirect, follow to the actual file (e.g., T383838.ai/rules/constitution.md)
β€’ Record both the pointer and the target

Supplementary governance files:
β€’ Glob T383838.ai/rules/*.md (if directory exists)
β€’ Glob T383838.specify/memory/*.md (beyond constitution)
β€’ Any other files referenced from the always-loaded files (parse for markdown links and "Read and follow" patterns)

For each file: record path, exists (bool), size in bytes, size in characters, estimated tokens (chars Γ· T383838chars_per_token).

2. Inventory Extension Commands

For each extension listed in T383838.specify/extensions.yml β†’ T383838installed::

1. Read T383838.specify/extensions/<ext-id>/extension.yml
2. For each command in T383838provides.commands[]:
β€’ Locate the command file (the T383838file: field points to the source)
β€’ Measure its character count and estimated tokens
3. Sum total tokens per extension

Produce a ranked list of extensions by total token footprint.

3. Calculate Per-Session Load Estimates

Estimate what gets loaded for different session types:

Baseline session (always loaded):
β€’ Sum tokens of always-loaded governance files
β€’ This is the minimum overhead before any work begins

Constitution-aware session (baseline + constitution):
β€’ Add constitution chain tokens
β€’ Add supplementary governance file tokens

Command invocation (per command):
β€’ For each extension command, the cost is: baseline + command file tokens + any files the command references (parse "Read" / "Load" instructions in the command file)

Present estimates for each context window size in T383838context_window_sizes config (default: 8K, 32K, 128K, 200K, 1M).

T282828
Tc9d1d9### Per-Session Token Budget

| Session Type | Tokens | % of 8K | % of 32K | % of 128K | % of 200K | % of 1M |
|---|---|---|---|---|---|---|
| Baseline (governance only) | X | X% | X% | X% | X% | X% |
| + Constitution | X | X% | X% | X% | X% | X% |
| + Largest command | X | X% | X% | X% | X% | X% |


4. Historical Trend Analysis

Check for a previous report at T383838.specify/optimize/token-report.md.

If found:
β€’ Parse the previous report's per-file token counts
β€’ Compare each file: current vs previous
β€’ Calculate per-file growth/reduction
β€’ Flag files growing faster than T383838file_growth_percent threshold (default: 20%)
β€’ Show overall governance token trend (growing / stable / shrinking)

If not found:
β€’ Note this is the first run β€” no trend data available
β€’ Recommend running periodically to track trends

5. Generate Token Usage Report

Present the full report to the user:

T282828
Tc9d1d9## Token Usage Report

**Date**: <ISO date>
**Target Context Window**: <from config> tokens

Tc9d1d9### Governance Files

| File | Exists | Chars | Est. Tokens | Load Timing | Notes |
|---|---|---|---|---|---|
| CLAUDE.md | Yes/No | X | X | Always | β€” |
| .specify/memory/constitution.md | Yes/No | X | X | Always | Redirect to <path> |
| <actual constitution path> | Yes | X | X | Always | Actual content |
| AGENTS.md | Yes/No | X | X | Always | β€” |
| .github/copilot-instructions.md | Yes/No | X | X | Always | β€” |
| .ai/rules/<file>.md | Yes | X | X | On reference | β€” |

**Total governance tokens**: X (~Y% of <context_window>)

Tc9d1d9### Extension Commands (ranked by token cost)

| Extension | Commands | Total Tokens | Largest Command | Largest Tokens |
|---|---|---|---|---|
| <ext-id> | X | X | <cmd> | X |
| ... | ... | ... | ... | ... |

**Total extension tokens**: X (loaded per invocation, not per session)

Tc9d1d9### Per-Session Estimates

[Table from Step 3]

Tc9d1d9### Historical Trend

| File | Previous | Current | Change | Growth % | Flag |
|---|---|---|---|---|---|
| <path> | X | X | +/-X | X% | [!] if > threshold |

**Overall governance trend**: Growing / Stable / Shrinking (X% change)

Tc9d1d9### Optimization Suggestions

[Ranked by projected token savings β€” suggest only, do not apply]

Tff7b721. **<suggestion>**: <description> β€” saves ~X tokens
Tff7b722. ...


6. Save Report

Ask the user: "Save this report to T383838.specify/optimize/token-report.md for trend tracking?"

If approved:
β€’ Write the report to T383838.specify/optimize/token-report.md (create directory if needed)
β€’ This enables historical trend comparison on future runs

If declined:
β€’ Report is displayed in conversation only, not persisted

7. Suggest Next Steps

Based on findings:

T282828
Tc9d1d9### Recommended Actions

Tff7b72- If governance budget exceeds threshold β†’ suggest Ta5d6ff`/speckit.optimize.run` for full audit
Tff7b72- If specific extensions are oversized β†’ suggest reviewing those command files for compression
Tff7b72- If CLAUDE.md duplicates constitution β†’ suggest consolidation
Tff7b72- If growth trend is upward β†’ suggest scheduling periodic token audits


Operating Principles

Read-Only Default
This command reads and measures β€” it does not modify. The only write action is saving the report file, and only with explicit consent.

Consistent Estimation
Token counts use chars Γ· T383838chars_per_token (configurable, default: 4.0) throughout. This is an approximation β€” actual counts vary by tokenizer. Use 3.0–3.5 for code-heavy projects, 4.0 for prose-heavy. The approximation is consistent across runs, making trend analysis valid even if absolute numbers are approximate.

Actionable Output
Every metric in the report is paired with a concrete action: "X tokens in version history β†’ remove via T383838/speckit.optimize.run". Raw numbers without actions are noise.

Trend Over Snapshots
A single run provides a snapshot. Repeated runs provide a trend. The historical comparison is the most valuable output β€” it tells you whether your governance is growing, stable, or shrinking over time.

Served by rngit 1.5.2 - Generated in 0.08s